for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
'use strict';
import Command from './command';
export default class Composer extends Command {
match(name) {
return name === 'composer';
}
call(cmd) {
cmd.command = `composer --command="${this.addslashes(cmd.rest)}"`;
super.call(cmd);